home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Image Compendium
/
Image Compendium.iso
/
utility
/
gifview
/
makerom.bat
< prev
next >
Wrap
DOS Batch File
|
1993-02-17
|
870b
|
35 lines
@ECHO OFF
ECHO OFF
del video.rom>nul
ECHO Make sure that DEBUG.EXE or DEBUG.COM can be found in your PATH. DEBUG
echo is a DOS program. If your DOS files are in your PATH then DEBUG is
echo probably there too! If not, you will need to COPY DEBUG.EXE from
echo your DOS diskette into your DOS directory!
echo.
pause
IF EXIST DEBUG.TXT GOTO :DOIT
ECHO DEGUG.TXT NOT found!
ECHO VIDEO.ROM will NOT be written out!
GOTO :EXIT
:DOIT
debug <debug.txt
IF exist VIDEO.ROM goto :goodexit
ECHO DEGUG.EXE or DEBUG.COM NOT in PATH!
ECHO VIDEO.ROM will NOT be written out!
goto :exit
:goodexit
echo.
echo.
echo.
echo.
echo.
echo.
echo If no errors were reported then you now have a file called VIDEO.ROM
echo which can be sent to:
echo.
echo Software Matters INC
echo 6352 N. Guilford Ave.
echo Indianapolis, IN 46220
echo.
:exit